630K - Indivisibility - CodeForces Solution


math number theory *1500

Please click on ads to support us..

Python Code:

n = int(input())
print(n-(n//2)-(n//3)-(n//5)-(n//7)+(n//6)+(n//10)+(n//14)+(n//15)+(n//21)+(n//35)-(n//30)-(n//105)-(n//42)-(n//70)+(n//210))

C++ Code:

#include<bits/stdc++.h>
using namespace std;
typedef long long l1;
#define ios ios::sync_with_stdio(false);cin.tie(0);
#define rep(i, a, n) for(int (i) = (int)a; (i) < (int)(n); ++(i))
#define REP(i, a, n) for(int (i) = (int)a; (i) <= (int)(n); ++(i))
const l1 MOD = 1e9 + 7;
template <typename T>
void print(vector<T>v)
{
    for(auto it: v)cout<<it<<" ";
    cout<<"\n";
}
l1 n;
int main()
{
    ios
    int test = 1;
    //cin >> test;
    while(test--)
    {
        //l1 n;
        cin >> n;
        vector<l1>v = {2,3,5,7};
        l1 ans = n;
        rep(a, 0, 4)ans-= n/v[a];
        rep(a, 0, 4)
        {
            rep(b, a+1, 4)ans+= n/(v[a]*v[b]);
        }
        rep(a, 0, 4)
        {
            rep(b, a+1, 4)
            {
                rep(c, b+1, 4)ans-= n/(v[a]*v[b]*v[c]);
            }
        }
        ans+= n/(v[0]*v[1]*v[2]*v[3]);
        cout<<ans;
    }
}


Comments

Submit
0 Comments
More Questions

1302. Deepest Leaves Sum
1209. Remove All Adjacent Duplicates in String II
994. Rotting Oranges
983. Minimum Cost For Tickets
973. K Closest Points to Origin
969. Pancake Sorting
967. Numbers With Same Consecutive Differences
957. Prison Cells After N Days
946. Validate Stack Sequences
921. Minimum Add to Make Parentheses Valid
881. Boats to Save People
497. Random Point in Non-overlapping Rectangles
528. Random Pick with Weight
470. Implement Rand10() Using Rand7()
866. Prime Palindrome
1516A - Tit for Tat
622. Design Circular Queue
814. Binary Tree Pruning
791. Custom Sort String
787. Cheapest Flights Within K Stops
779. K-th Symbol in Grammar
701. Insert into a Binary Search Tree
429. N-ary Tree Level Order Traversal
739. Daily Temperatures
647. Palindromic Substrings
583. Delete Operation for Two Strings
518. Coin Change 2
516. Longest Palindromic Subsequence
468. Validate IP Address
450. Delete Node in a BST